home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960425-19960715 / 000317_news@columbia.edu _Thu Jun 27 16:16:26 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id QAA09049 for <kermit.misc@watsun.cc.columbia.edu>; Thu, 27 Jun 1996 16:16:25 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id QAA23527 for kermit.misc@watsun; Thu, 27 Jun 1996 16:16:24 -0400 (EDT)
  4. Path: news.columbia.edu!lamont.ldeo.columbia.edu!zombie.ncsc.mil!news.mathworks.com!news.PBI.net!samba.rahul.net!rahul.net!a2i!bug.rahul.net!rahul.net!a2i!genmagic!usenet
  5. From: William Mills <mills@genmagic.com>
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Zmodem and Kermit.
  8. Date: Thu, 27 Jun 1996 12:03:49 -0700
  9. Organization: General Magic, Inc.
  10. Lines: 48
  11. Message-ID: <31D2DB15.660F@genmagic.com>
  12. References: <31C86923.4868@genmagic.com> <31CAFD40.30ED@macau.ctm.net>
  13. Reply-To: mills@genmagic.com
  14. NNTP-Posting-Host: gatekeep.genmagic.com
  15. Mime-Version: 1.0
  16. Content-Type: text/plain; charset=us-ascii
  17. Content-Transfer-Encoding: 7bit
  18. X-Mailer: Mozilla 2.01 (Macintosh; I; PPC)
  19.  
  20. I have C-Kermit 5A(190) and a new version of the rz/sz whic I got from ohmen.com.
  21.  
  22. I do the following:
  23.  
  24. set modem hayes
  25. set line /dev/tty00
  26. set baud 9600
  27. dial ########
  28. connect
  29.  
  30. (Go through the login stuff by hand and start a ZMODEM send from THAT end, I am getting the 
  31. files.)
  32.  
  33. ^\c
  34. !sz -L1024 -b      
  35.                  This results in "/dev/ttypa permission denied"
  36. !sz -L1024 -b < /dev/tty00 > /dev/tty00           
  37.                  This results in "/dev/ttypa permission denied"
  38.  
  39.  
  40. Am I doing something wrong?
  41.  
  42. TIA
  43. -bill
  44.  
  45. SAM, Chi-Kin wrote:
  46. > William Mills wrote:
  47. > >
  48. > > It used to be possible when rz was a friendlier package to
  49. ...snip...
  50. > The SZRZ can be called within C-kermit in Sun OS, in fact I have the following line in
  51. > my .kermrc:
  52. > define autosz1 apc rz1, !sz -L1024 -b \%1 \%2 \%3 \%4
  53. > In fact, this macro also initial the auto receive of z-modem transfer by my MS-kermit,
  54. > so if you would want to go so complicated, you can initial sz tranfer, after enter
  55. > C-kermit by:
  56. > !sz <filename>
  57. > Note: above method need the exist of the sz/rz program.
  58. > Cheers,
  59. >    --SAM
  60. > --